
  @import url('../../../fonts/font.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: shabnam, sans-serif;
}

body {
    background: #0f182a;

}
.logo{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 87px;
}
.logoZ{
    width: 90px;
}
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.head-txt {
  font-size: 18px;
  font-weight: bold;
      text-transform: uppercase;
      color: white;
      animation: pulseColor 25s ease-in-out infinite;
      text-shadow: 0 0 10px rgba(255,0,0,0.5),
                   0 0 20px rgba(0,255,0,0.5),
                   0 0 30px rgba(0,0,255,0.5);
}

/* انیمیشن تغییر رنگ متن */
@keyframes pulseColor  {
  0%   { color: red; }
  10%   { color: rgb(245, 237, 237); }
  20%   { color: rgb(107, 193, 49); }
  30%   { color: rgb(196, 230, 44); }
  40%   { color: rgb(186, 44, 167); }
  50%   { color: rgb(52, 193, 181); }
  60%   { color: rgb(45, 161, 193); }
  70%  { color: green; }
  80%  { color: blue; }
  90%   { color: rgb(197, 56, 122); }
  100% { color: red; }
}

#backgroundImage {
    margin-top: 100px;
    height: auto;
    width: 100%;
    height: 750px; /* یا هر ارتفاعی که می‌خوای */
    object-fit: cover;
    background-position: center;
    position: relative;
    background-size: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

/* //........top text ........// */

:root {
    /* //....... Color ........// */
    --primary-color: #ff3c78;
    --light-black: rgba(0, 0, 0, 0.89);
    --black: #000;
    --white: #fff;
    --grey: #aaa;

}


/* //........top text ........// */

.navbar--top {
    top:0px !important;
}

.top-txt {
    background-color: var(--black);
}
    .magic-text {
      font-size: 28px;
      margin-right: -720px;
      font-weight: bold;
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(270deg, #00ffff, #ff00ff, #ff9900, #00ff99);
      background-size: 800% 800%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientShift 6s ease infinite;
      text-shadow:
        0 0 10px rgba(255, 255, 255, 0.2),
        0 0 20px rgba(255, 0, 255, 0.3),
        0 0 30px rgba(0, 255, 255, 0.3);
      transition: transform 0.3s ease;
    }

    .magic-text:hover {
      transform: scale(1.05);
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
.head {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.945);
    padding: 15px 0;
    font-size: 14px;
}

.head a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.945);
    margin: 0 10px;
}


/* //........ Navbar ........// */

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}

.navbar {
    color: var(--black);
    position: fixed;
    width: 100%;
    top: 53px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.navbar-container {
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.navbar img {
}

.menu-items {
    order: 2;
    display: flex;
    margin-right: 3rem;
}

.menu-items li {
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.2rem;
}

.navbar-container ul a {
    text-decoration: none;
    color: var(--black);
    font-size: 18px;
    position: relative;
}

.navbar-container ul a:after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    height: 3px;
    width: 0;
    left: 0;
    bottom: -10px;
    transition: 0.3s;
}

.navbar-container ul a:hover:after {
    width: 100%;
}


footer {
    width: 100%;
    background: var(--black);
}

.footer-container .content_1 img {
     height: 130px;
    width: 200px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
    flex-direction: row;
}
.footer-container h4 {
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-container a {
    display: block;
    text-decoration: none;
    color: var(--grey);
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-container .content_1 p,
.footer-container .content_4 p {
    color: var(--grey);
    margin: 25px 0;
    font-size: 14px;
}

.footer-container .content_4 input[type="email"] {
    background-color: var(--black);
    border: none;
    color: var(--white);
    outline: none;
    padding: 15px 0;
}

.footer-container .content_4 .f-mail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-container .content_4 .bx {
    color: var(--white);
}

.f-design {
    width: 100%;
    color: var(--white);
    text-align: center;
}

.f-design .f-design-txt {
    border-top: 1px solid var(--grey);
    padding: 25px 0;
    font-size: 14px;
    color: var(--grey);
}


body {
  margin: 0;
  background-color: #181818;
  color: #e0e0e0;
  direction: rtl;
}

.page {
  padding: 80px 16px;
  max-width: 960px;
  margin: 0 auto;
}




#downloadGrid {
  max-width: 500px;
  margin: 0 auto;
  font-family: sans-serif;
}

.season-wrapper {
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.season-button {
  display: block;
  width: 100%;
  background-color: #444;
  color: white;
  padding: 10px;
  text-align: right;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.episode-container {
  padding-right: 0px;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}

.episode-container.slide-down {
  max-height: 1000px;
  opacity: 1;
}

.download-button {
  display: block;
  margin: 5px 0;
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
}

.hidden {
  max-height: 0;
  opacity: 0;
}













.manga-card {
  background-color: #242424;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  padding: 24px;
}

.manga-card__top {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    flex-direction: row;
}

.manga-card__cover img {
  width: 210px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 64, 129, 0.4);
}

.manga-card__text {
  flex: 1;
  text-align: right;
}

.manga-card__title {
  font-size: 2rem;
  margin-bottom: 16px;
  background: linear-gradient(to left, #ff4081, #33ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.manga-card__description {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.manga-card__info {
  margin-top: 32px;
}

.info-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 280px;
}

.info-list li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.info-list span {
  font-weight: bold;
  color: #ff4081;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.download-heading{
    display: flex;
    justify-content: center;
}
.download-button {
  display: block;
  text-align: center;
  padding: 12px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  transition: background-color 0.2s, transform 0.2s;
}

.download-button:hover {
  background-color: #444;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .download-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}



/* //........ Footer ...... // */

footer {
    width: 100%;
    background: var(--black);
}

.footer-container .content_1 img {
    height: 130px;
    width: 200px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
}

.footer-container h4 {
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-container a {
    display: block;
    text-decoration: none;
    color: var(--grey);
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-container .content_1 p,
.footer-container .content_4 p {
    color: var(--grey);
    margin: 25px 0;
    font-size: 14px;
}

.footer-container .content_4 input[type="email"] {
    background-color: var(--black);
    border: none;
    color: var(--white);
    outline: none;
    padding: 15px 0;
}

.footer-container .content_4 .f-mail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-container .content_4 .bx {
    color: var(--white);
}

.f-design {
    width: 100%;
    color: var(--white);
    text-align: center;
}

.f-design .f-design-txt {
    border-top: 1px solid var(--grey);
    padding: 25px 0;
    font-size: 14px;
    color: var(--grey);
}


/* //........ contact ...... // */

.center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f05e8a;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 2;
}

.center-btn:hover {
  background-color: #d94c76;
}

.contact {
    margin-top: 45px;
}

iframe {
    height: 72vh;
    width: 100%;
}

.form {
    display: flex;
    justify-content: space-between;
    margin: 80px 0;
}

.form .form-txt {
    flex-basis: 48%;
}

.form .form-txt h4 {
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    font-size: 15px;
    margin-bottom: 15px;
}

.form .form-txt h1 {
    font-weight: 600;
    color: var(--black);
    font-size: 40px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    color: var(--light-black);
}

.form .form-txt span {
    color: var(--light-black);
    font-size: 14px;
}

.form .form-txt h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 15px 0;
    color: var(--light-black);
}

.form .form-txt p {
    color: var(--light-black);
    font-size: 14px;
}

.form .form-details {
    flex-basis: 48%;
}

.form .form-details input[type="text"],
.form .form-details input[type="email"] {
    padding: 15px 20px;
    color: var(--grey);
    outline: none;
    border: 1px solid var(--grey);
    margin: 35px 15px;
    font-size: 14px;
}

.form .form-details textarea {
    padding: 15px 20px;
    margin: 0 15px;
    color: var(--grey);
    outline: none;
    border: 1px solid var(--grey);
    font-size: 14px;
    resize: none;
}

.form .form-details button {
    padding: 15px 25px;
    color: var(--white);
    font-weight: 500;
    background: var(--black);
    outline: none;
    border: none;
    margin: 15px;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
}


/* //....... Media Queries .......// */

/* همبرگری */
.hamburger {
  font-size: 28px;
  cursor: pointer;
  color: white;
  display: none;
  padding: 10px;
  z-index: 1001;
}

/* منو اصلی */
.menu-items {
  display: flex;
  flex-direction: row;
  margin-right: 3rem;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .neon-box {
    width: 100%;
    margin-left: 0;
    height: auto;
    flex-direction: column;
    padding: 20px;
    border-radius: 30px;
  }

  .best-seller {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .best-p1 {
    width: 90%;
    max-width: 300px;
    margin: 10px auto;
  }

  .best-p1 img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }

  .sjmrate {
    width: 45px;
    font-size: 14px;
  }

  .agedes {
    font-size: 0.8rem;
    padding: 2px 6px;
  }

  .hover-text {
    font-size: 0.9rem;
    padding: 6px;
  }

  .top-sales-header {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  .top-sales-header h2,
  .top-sales-header p {
    font-size: 1rem;
  }

  .view-all-btn {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* واکنش‌گرایی */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .l-news {
    flex-direction: column;
    align-items: center;
    gap: 140px;
    padding: 0 10px;
  }

  .l-news1, .l-news2, .l-news3 {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .news1-conte, .news2-conte, .news3-conte {
    position: static;
    padding: 15px;
    margin-top: 10px;
    text-align: center;
  }

  .news-heading h2 {
    font-size: 24px;
  }

  .news-heading p {
    font-size: 16px;
  }

  .custom-button {
    font-size: 18px;
    padding: 10px 20px;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 10px;
  }

  .footer-container > div {
    margin-bottom: 30px;
  }

  .footer-container img {
    width: 150px;
    height: auto;
  }

  .f-mail {
    flex-direction: column;
    gap: 10px;
  }

  .f-design .f-design-txt {
    font-size: 13px;
  }

  .menu-items {
    display: none;
    flex-direction: column;
    background-color: rgba(246, 241, 241, 0.95);
    position: absolute;
    top: 100px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
  }

  .menu-items.show {
    display: flex;
  }

  .menu-items li {
    margin: 10px 0;
    text-align: center;
  }

  .navbar-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
  }

  .logoZ {
    width: 90px;
  }

  .magic-text {
    font-size: 20px;
    margin-right: 0;
    text-align: center;
  }

  #backgroundImage {
    height: 400px;
  }
}

/* 🖥 مانیتورهای بزرگ (عرض بیشتر از 1440px) */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .magic-text {
    font-size: 32px;
    margin-right: -800px;
  }

  .menu-items li {
    font-size: 1.4rem;
  }

  .neon-box {
    width: 1350px;
    height: 500px;
  }

  .seller .best-p1 {
    width: 280px;
    height: 400px;
  }
}

/* 💻 دسکتاپ معمولی (1025px تا 1439px) */
@media (min-width: 1025px) and (max-width: 1439px) {
  .container {
    max-width: 1200px;
  }

  .magic-text {
    font-size: 28px;
    margin-right: -600px;
  }

  .menu-items li {
    font-size: 1.2rem;
  }

  .neon-box {
    width: 1200px;
    height: 480px;
  }

  .seller .best-p1 {
    width: 260px;
    height: 380px;
  }
}

/* 📲 تبلت افقی و لپ‌تاپ کوچک (769px تا 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  body {
    font-size: 15px;
  }

  .container {
    width: 90%;
  }

  .logo {
    margin-right: 30px;
    flex-direction: row;
    justify-content: flex-start;
  }

  .magic-text {
    font-size: 24px;
    margin-right: -300px;
  }

  .navbar-container {
    flex-direction: row;
    height: auto;
    padding: 10px 20px;
  }

  .menu-items {
    flex-direction: row;
    justify-content: center;
    margin-right: 1rem;
  }

  .menu-items li {
    margin: 10px;
    font-size: 17px;
  }

  #backgroundImage {
    height: 600px;
  }

  .head-txt {
    font-size: 17px;
  }

  .neon-box {
    width: 100%;
    margin-left: 0;
    height: auto;
    flex-direction: column;
  }

  .collections {
    flex-direction: column;
  }

  .seller {
    flex-direction: column;
    align-items: center;
  }

  .form {
    flex-direction: column;
  }

  .form .form-txt,
  .form .form-details {
    width: 100%;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .l-news {
    flex-direction: column;
    gap: 30px;
  }
}

/* 📳 موبایل متوسط (481px تا 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  body {
    font-size: 14px;
    transform: scale(0.95);
    transform-origin: top center;
  }

  .logo {
    margin-right: 0;
    margin-bottom: 10px;
    flex-direction: row;
    justify-content: center;
  }

  .logoZ {
    width: 40px;
  }

  .container {
    width: 95%;
    padding: 0 10px;
  }

  .head {
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    text-align: center;
  }

  .magic-text {
    font-size: 20px;
    margin-right: 0;
    text-align: center;
  }

  .navbar-container {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
  }

  .menu-items {
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 10px 0;
  }

  .menu-items li {
    margin: 10px 0;
    font-size: 16px;
  }

  .navbar-container ul a {
    font-size: 16px;
  }

  #backgroundImage {
    height: 400px;
    margin-top: 60px;
  }

  .head-txt {
    font-size: 16px;
    text-align: center;
    padding: 10px;
  }

  .neon-box {
    width: 100%;
    margin-left: 0;
    height: auto;
    flex-direction: column;
  }

  .collections {
    flex-direction: column;
  }

  .seller {
    flex-direction: column;
    align-items: center;
  }

  .seller .best-p1 {
    width: 90%;
    margin: 20px 0;
  }

  .form {
    flex-direction: column;
  }

  .form .form-txt,
  .form .form-details {
    width: 100%;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .l-news {
    flex-direction: column;
    gap: 30px;
  }

  .l-news img {
    width: 100%;
    height: auto;
  }

  .l-news1,
  .l-news2,
  .l-news3 {
    width: 100%;
    height: auto;
  }

  .news1-conte,
  .news2-conte,
  .news3-conte {
    position: static;
    padding: 15px;
  }
}

/* 📱 موبایل کوچک (عرض کمتر از 480px) */
@media (max-width: 480px) {
  body {
    font-size: 13px;
    transform: scale(0.9);
    transform-origin: top center;
  }

  .logoZ {
    width: 35px;
  }

  .magic-text {
    font-size: 18px;
    text-align: center;
    margin-right: 0;
  }

  .menu-items li {
    font-size: 15px;
  }

  .head-txt {
    font-size: 15px;
  }

  #backgroundImage {
    height: 300px;
  }

  .custom-button {
    font-size: 18px;
    padding: 10px 20px;
  }

  .news-heading h2 {
    font-size: 24px;
  }

  .form .form-details input,
  .form .form-details textarea {
    margin: 15px 0;
    width: 100%;
  }

  .footer-container .content_1 img {
    width: 150px;
    height: auto;
  }
}
